home *** CD-ROM | disk | FTP | other *** search
- global gCalNum, gSetNum, gLastNum, gOperation, gAnswer
-
- on Answer
- if gOperation = EMPTY then
- exit
- end if
- if gOperation = "+" then
- set gCalNum to gCalNum + gSetNum
- else
- if gOperation = "-" then
- set gCalNum to gSetNum - gCalNum
- else
- if gOperation = "*" then
- set gCalNum to gCalNum * gSetNum
- else
- if gOperation = "/" then
- if string(gSetNum) contains "." then
- nothing()
- else
- set gSetNum to value(string(gSetNum) & ".0")
- end if
- if gCalNum = 0 then
- error()
- abort()
- end if
- set gCalNum to gSetNum / gCalNum
- end if
- end if
- end if
- end if
- set the itemDelimiter to "."
- set lText1 to item 1 of string(gCalNum)
- set lText2 to item 2 of string(gCalNum)
- if value(lText2) = 0 then
- set gCalNum to integer(gCalNum)
- end if
- if the number of chars in lText1 > 9 then
- error()
- abort()
- end if
- set the itemDelimiter to ","
- set gSetNum to gCalNum
- set gOperation to EMPTY
- DrawNum()
- set gCalNum to 0
- set gAnswer to 1
- end
-
- on error
- set gCalNum to "E"
- set gOperation to EMPTY
- DrawNum()
- set gCalNum to 0
- set gAnswer to 1
- end
-